home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / pibpict.lbr / README.DOC < prev   
Text File  |  1985-06-03  |  2KB  |  54 lines

  1. This library contains five files:
  2.  
  3.    (1)  README.DOC   --- what you are reading now.
  4.    (2)  PIBPICT.PQS  --- a sample Turbo Pascal program to demonstrate
  5.                          the editing facilities of routine
  6.                          Picture_Format.   (SQUEEZED)
  7.    (3)  PICTFORM.PQS --- the code for Picture_Format.  (SQUEEZED)
  8.    (4)  PIBPICT.DQT  --- a data file used by PIBPICT.PAS, containing
  9.                          many examples of the use of Picture_Format.
  10.                          (SQUEEZED)
  11.    (5)  PIBPICT.LQS  --- the output resulting from running
  12.                          PIBPICT.PAS.  (SQUEEZED)
  13.  
  14. The squeezed files were created using a squeezer that does NOT
  15. insert the date and time of creation, so almost any unsqueezer
  16. should work on them.  NOTE:  A squeezed file is one that has
  17. been bitwise compressed to save space.  To use such a file,
  18. you must have an unsqueezer program.  Most BBSs have at least
  19. one such program, usually called USQ or NUSQ or something
  20. similar.  To decompress files (2) through (5) above, using a
  21. program called (for example) USQ, you would enter the following
  22. DOS commands:
  23.  
  24.    USQ PIBPICT.PQS
  25.    USQ PICTFORM.PQS
  26.    USQ PIBPICT.DQT
  27.    USQ PIBPICT.LQS
  28.  
  29. As a result, you should get the files PIBPICT.PAS, PICTFORM.PAS,
  30. PIBPICT.DAT, and PIBPICT.LIS.
  31.  
  32. The routine Picture_Format contained in file PICTFORM.PAS provides a
  33. very general commercial picture format editing facility for Turbo
  34. Pascal.  If you have used PL/1, Cobol, or some dialects of Basic,
  35. then you know what picture format is all about.  If you haven't
  36. encountered picture formats before, then, very briefly, a picture
  37. format is a string of characters describing exactly how the digits of a
  38. number should be layed out for printing purposes.  This picture
  39. format contains characters indicating where digits are to be placed,
  40. if a sign is to included, if commas are to be used, if a dollar
  41. sign should appear in front of the number, etc.
  42.  
  43. A complete description of the picture format control characters
  44. appears in the header to the Picture_Format routine itself.
  45.  
  46. Please report bugs, enhancements, etc. to me on one of the
  47. following two Chicago area BBSs:
  48.  
  49.      Gene Plantz's  IBBS     (312) 882 4227
  50.      Ron Fox's RBBS          (312) 940 6496
  51.  
  52. Thanks,
  53. Philip R. Burns
  54. February, 1985